home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / science / ack3d.zip / XTYPES.H < prev   
C/C++ Source or Header  |  1994-01-09  |  1KB  |  40 lines

  1. #ifndef __XTYPES_H
  2. #define __XTYPES_H
  3.  
  4. /* X T Y P E S . h  -- Type and constant definitions
  5.  * ---------------------------------------------------------------
  6.  *
  7.  * $Revision:   1.0  $
  8.  *     $Date:   28 Feb 1992  8:55:28  $
  9.  *      $Log:   F:/XMSLIB/VCS/XTYPES.H_V  $
  10.  * 
  11.  *    Rev 1.0   28 Feb 1992  8:55:28
  12.  * Initial revision.
  13.  * 
  14.  * ---------------------------------------------------------------
  15.  */
  16.  
  17. /* ------------------------  Pragmas -------------------------- */
  18.  
  19. /* ---------------- Include files (interface) ----------------- */
  20.  
  21. /* ----------------------- Definitions ------------------------ */
  22.  
  23. typedef unsigned short WORD;      // 16-bit value
  24. typedef unsigned long  DWORD;     // 32-bit value
  25.  
  26. typedef enum  // Boolean values
  27.   {
  28.   FALSE,      // 0
  29.   TRUE        // 1
  30.   }
  31. BOOLEAN;
  32.  
  33. /* ------------------- Function prototypes -------------------- */
  34.  
  35. /* ------------------------- Globals -------------------------- */
  36.  
  37. /* ------------------------------------------------------------ */
  38.  
  39. #endif  // __XTYPES_H
  40.